﻿#Toggle beauty trait complexion
nss_beauty_toggle_makeup = {
	category = interaction_category_uncategorized

	use_diplomatic_range = no
	ignores_pending_interaction_block = yes
	
	is_shown = {
		scope:recipient = {
			has_trait = beauty_good
		}
		scope:actor = {
			is_ai = no
		}
	}

	desc = {
		desc = nss_beauty_toggle_makeup_desc
		desc = line_break
	}
	
	on_accept = {
		scope:recipient = {
			if = {
				limit = { has_character_flag = nss_beauty_no_makeup }
				remove_character_flag = nss_beauty_no_makeup
				custom_tooltip = nss_beauty_toggle_makeup_on
			}
			else = {
				add_character_flag = nss_beauty_no_makeup
				custom_tooltip = nss_beauty_toggle_makeup_off
			}
		}
	}

	auto_accept = yes
	
	ai_will_do = 0
}

